home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetPrintDoc.h < prev    next >
C/C++ Source or Header  |  1996-09-04  |  801b  |  39 lines

  1. /*
  2.  *--- PGetPrintDoc.h ------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetPrintDoc__
  10. #define __PGetPrintDoc__
  11.  
  12. #include "PHandleQuery.h"
  13.  
  14. class PGetPrintDoc : public PHandleQuery
  15. {
  16.  
  17. public:
  18.  
  19.     PGetPrintDoc();
  20.  
  21.     short            nCopies;
  22.     PMBool            bCollate;
  23.     PMBool            bReverse;
  24.     PMBool            bProof;
  25.     const char *    sRange;
  26.     PMBool            bBlank;
  27.     short            cPages;
  28.     PMBool            bIndependence;
  29.     PMBool            bBook;
  30.     PMBool            bBookSpec;
  31.     PMBool            bOrientation;
  32.     PMBool            bSpreads;
  33.     PMBool            bIgnNonPrint;
  34. };
  35.  
  36. #endif
  37.  
  38. // end of PGetPrintDoc.h
  39.